|
|
|
|
OnCheckBoxClicked Method, SftTree Class |
Raises the CheckBoxClicked event.
Syntax SftTree Class (Softelvdm.SftTreeNET)
VB |
Protected Overridable Sub OnCheckBoxClicked( ByVal e As PartEventArgs ) |
C# |
protected virtual void OnCheckBoxClicked( PartEventArgs e ); |
C++ |
protected: virtual void OnCheckBoxClicked( PartEventArgs^ e ); |
e
The event data.
Comments
The OnCheckBoxClicked method raises the CheckBoxClicked event.
Raising an event invokes the event handler through a delegate.
The OnCheckBoxClicked method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
When overriding OnCheckBoxClicked in a derived class, make sure to call the base class's OnCheckBoxClicked method so that registered delegates receive the event.